-
-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: master
branch is failing precompilation
#438
fix: master
branch is failing precompilation
#438
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AI-Maintainer Review for PR - master
branch is failing precompilation
Title and Description 👍
The Title and Description are clear and concise
The title and description of the pull request are clear and concise. They effectively communicate the purpose of the changes, which is to fix the precompilation failure on the master branch. The error message and the link to the CI build where the error occurred provide useful context.
Scope of Changes 👍
The changes are narrowly focused
The changes in this pull request are narrowly focused on resolving a specific issue. The modifications to the Radials.jl
file are directly related to fixing the error mentioned in the description. There is no indication that the author is trying to resolve multiple issues simultaneously.
Docstrings 👍
All new functions, classes, or methods have appropriate docstrings
The diff does not show any new functions, classes, or methods being added. Therefore, there are no missing docstrings in the changes made.
Testing 👎
Testing methodology is not described
The description does not provide information about how the author tested the changes. It would be helpful for the author to provide details about the testing methodology to ensure the changes have been thoroughly validated.
Suggested Changes
Please provide information about how you tested the changes. This could include unit tests you ran, manual testing you performed, or any other relevant testing methodology. This will help reviewers understand how you ensured the changes are effective and do not introduce new issues.
Reviewed with AI Maintainer
master
branch is failing precompilationmaster
branch is failing precompilation
@ChrisRackauckas can we merge this? |
This also fails? |
Hmm, its a different error in ✓ Surrogates
✓ CUDA
✓ cuDNN
✓ NNlibCUDA
✓ Flux
133 dependencies successfully precompiled in 157 seconds
Testing Running tests...
Resolving package versions...
ERROR: LoadError: Unsatisfiable requirements detected for package Statistics [10745b16]:
Statistics [10745b16] log:
├─possible versions are: 0.0.0 or uninstalled
├─Statistics [10745b16] is fixed to version 0.0.0
└─found to have no compatible versions left with Zygote [e88e6eb3]
└─Zygote [e88e6eb3] log:
├─possible versions are: 0.1.0-0.6.63 or uninstalled
└─restricted to versions 0.4-0.6 by Surrogates [6fc51010], leaving only versions 0.4.0-0.6.63
└─Surrogates [6fc51010] log:
├─possible versions are: 6.5.1 or uninstalled
├─restricted to versions 6 by SurrogatesAbstractGPs [78aa1720], leaving only versions 6.5.1
│ └─SurrogatesAbstractGPs [78aa1720] log:
│ ├─possible versions are: 0.1.0 or uninstalled
│ └─SurrogatesAbstractGPs [78aa1720] is fixed to version 0.1.0
└─Surrogates [6fc51010] is fixed to version 6.5.1
|
Latest Turing doesn't allow v1.6: is this related? |
894930e
to
345b254
Compare
Surrogates doesn't use Can you trigger the workflow for the latest julia version - it worked for me locally (although tests were failing - unrelated reason) and it was cancelled in the previous run. |
Why does |
Because v1.6 fails. |
Ok, |
Some package requires >v1.6, something in the GP stack. |
One small thing I tried was adding this line in runtests: Pkg.add(name="Statistics", version=VERSION) and this worked if I did |
This is to see if CI will pass or not. This will be removed before merging
I'll try figure out what is going on here. |
The following fixes the issue on 1.6 Pkg: diff --git a/src/Operations.jl b/src/Operations.jl
index 0644e0ee7..6ac5a48c4 100644
--- a/src/Operations.jl
+++ b/src/Operations.jl
@@ -281,7 +281,7 @@ function collect_project!(ctx::Context, pkg:
:PackageSpec, path::String,
pkg.version = project.version
else
# @warn("project file for $(pkg.name) is missing a `version` entry")
- pkg.version = VersionNumber(0)
+ pkg.version = VERSION # VersionNumber(0)
end
return
end Since
seems to work I would go with that on 1.6 though as a workaround. |
okay thanks let's do that. |
Getting an error:
Same error in the CI build on master - https://github.com/SciML/Surrogates.jl/actions/runs/5554601185/job/15046314727
This should fix that